home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / GbrImagePlugin.py < prev    next >
Text File  |  2006-12-03  |  2KB  |  71 lines

  1. #
  2. # The Python Imaging Library
  3. # $Id: GbrImagePlugin.py 2134 2004-10-06 08:55:20Z fredrik $
  4. #
  5. # load a GIMP brush file
  6. #
  7. # History:
  8. #       96-03-14 fl     Created
  9. #
  10. # Copyright (c) Secret Labs AB 1997.
  11. # Copyright (c) Fredrik Lundh 1996.
  12. #
  13. # See the README file for information on usage and redistribution.
  14. #
  15.  
  16. import Image, ImageFile
  17.  
  18. def i32(c):
  19.     return ord(c[3]) + (ord(c[2])<<8) + (ord(c[1])<<16) + (ord(c[0])<<24L)
  20.  
  21. def _accept(prefix):
  22.     return i32(prefix) >= 20 and i32(prefix[4:8]) == 1
  23.  
  24. ##
  25. # Image plugin for the GIMP brush format.
  26.  
  27. class GbrImageFile(ImageFile.ImageFile):
  28.  
  29.     format = "GBR"
  30.     format_description = "GIMP brush file"
  31.  
  32.     def _open(self):
  33.  
  34.         header_size = i32(self.fp.read(4))
  35.         version = i32(self.fp.read(4))
  36.         if header_size < 20 or version != 1:
  37.             raise SyntaxError, "not a GIMP brush"
  38.  
  39.         width = i32(self.fp.read(4))
  40.         height = i32(self.fp.read(4))
  41.         bytes = i32(self.fp.read(4))
  42.         if width <= 0 or height <= 0 or bytes != 1:
  43.             raise SyntaxError, "not a GIMP brush"
  44.  
  45.         comment = self.fp.read(header_size - 20)[:-1]
  46.  
  47.         self.mode = "L"
  48.         self.size = width, height
  49.  
  50.         self.info["comment"] = comment
  51.  
  52.         # Since the brush is so small, we read the data immediately
  53.         self.data = self.fp.read(width * height)
  54.  
  55.     def load(self):
  56.  
  57.         if not self.data:
  58.             return
  59.  
  60.         # create an image out of the brush data block
  61.         self.im = Image.core.new(self.mode, self.size)
  62.         self.im.fromstring(self.data)
  63.         self.data = ""
  64.  
  65. #
  66. # registry
  67.  
  68. Image.register_open("GBR", GbrImageFile, _accept)
  69.  
  70. Image.register_extension("GBR", ".gbr")
  71.